home *** CD-ROM | disk | FTP | other *** search
/ Iron Maiden - Maiden Hell! / Iron Maiden - Maiden Hell! Promotional CD-ROM.iso / mac / promo.dxr / scripts_22_adjust audio vol = .ls < prev    next >
Encoding:
Text File  |  1998-09-16  |  641 b   |  21 lines

  1. on mouseEnter
  2.   set the cursor of sprite the currentSpriteNum to [the number of member "hand", the number of member "handmask"]
  3.   set the member of sprite 16 to "rolloversVolume"
  4. end
  5.  
  6. on mouseDown
  7.   global gCD, gSongWereGuessing
  8.   repeat while the stillDown
  9.     set the locV of sprite the currentSpriteNum to the mouseV
  10.     set plaice to float((the locV of sprite 28 - the bottom of sprite 27) * -1000 / the height of sprite 27) / 1000
  11.     set vol to integer(plaice * 7)
  12.     updateStage()
  13.   end repeat
  14.   set the soundLevel to vol
  15. end
  16.  
  17. on mouseLeave
  18.   set the cursor of sprite the currentSpriteNum to 0
  19.   set the puppet of sprite 16 to 0
  20. end
  21.